const go/types.maxTermCount

5 uses

	go/types (current package)
		typeset.go#L422: 		if len(allTerms) > maxTermCount {
		typeset.go#L424: 				check.errorf(atPos(pos), _InvalidUnion, "cannot handle more than %d union terms (implementation limitation)", maxTermCount)
		union.go#L49: const maxTermCount = 100
		union.go#L68: 		if len(terms) >= maxTermCount {
		union.go#L70: 				check.errorf(x, _InvalidUnion, "cannot handle more than %d union terms (implementation limitation)", maxTermCount)